home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / SYMBMATH.H12 < prev    next >
Text File  |  1993-11-07  |  490b  |  18 lines

  1.         3.3.2  Evaluation Statements
  2.     The evaluation statement has the format:
  3.  
  4.         expression
  5.  
  6.     SymbMath evaluates any expression which in a line and gives
  7. the value of the expression. e.g.
  8.  
  9. IN:  3 + 4
  10. OUT: 7          # the value of 3+4
  11. IN:  d(x^6, x)
  12. OUT: 6 x^5      # the value of d(x^6, x)
  13. IN:  subs(last, x = 1)         # evaluate the last output when x = 1.
  14. OUT: 6
  15.  
  16.     The last output can be saved to a variable for the later use
  17. by the built-in variable "last", e.g. f:=last.
  18.